Karabiner-Elements で Shift 単体で押下したときに 英数・かな を切り替える
以下の JSON を .config/karabiner/assts/complex_modifications の配下に任意のファイル名で保存する
code: my_eisu_kana.json
{
"title": "US 配列向け英数/かな切り替え設定",
"rules": [
{
"description": "右 Shift 単体で'かな'を送信",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "right_shift",
"modifiers": {
}
},
"to": [
{
"key_code": "right_shift",
"lazy": true
}
],
"to_if_held_down": [
{
"key_code": "right_shift"
}
],
"to_if_alone": [
{
"key_code": "japanese_kana"
}
]
}
]
},
{
"description": "左 Shift 単体で'英数'を送信",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_shift",
"modifiers": {
}
},
"to": [
{
"key_code": "left_shift",
"lazy": true
}
],
"to_if_held_down": [
{
"key_code": "left_shift"
}
],
"to_if_alone": [
{
"key_code": "japanese_eisuu"
}
]
}
]
}
]
}